
.report-table .report-table-parent table td {
    /*font-size: 10px;*/
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.report-table tr th {
    padding: 8px 0;
}

.report-table .report-table-parent table td:hover {
    background-color: #cbcbcb;
}

.report-table .report-table-parent table .header-tr {
    background: #e6e5e5;

}

.loader-container {
    display: flex;
    justify-content: left;
    align-items: left;
    height: 25px;
}

/* Spinning loader styles */
.spinner {
    width: 25px;
    height: 25px;
    border: 5px solid #f3f3f3; /* Light gray border */
    border-top: 5px solid #3498db; /* Blue border */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for spinning */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}